home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HAM Radio 1997
/
HAM Radio 1997.iso
/
vcls
/
imagelib
/
babout.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1996-04-08
|
657b
|
40 lines
{Part of Imagelib VCL/DLL Library.
Written by Jan Dekkers and Kevin Adams}
unit Babout;
interface
uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
Buttons, ExtCtrls, tmulti, sysutils;
type
TAboutBox = class(TForm)
Panel1: TPanel;
OKButton: TBitBtn;
ProductName: TLabel;
Version: TLabel;
Copyright: TLabel;
MultiImage1: TMultiImage;
Label1: TLabel;
Panel2: TPanel;
Label6: TLabel;
Label2: TLabel;
private
{ Private declarations }
public
{ Public declarations }
end;
var
AboutBox: TAboutBox;
implementation
{$R *.DFM}
end.